1
Foundations of Gaussian Elimination
MATH007 Lesson 6
00:00
Imagine the challenge of solving a system with thousands of variables. How do we extract the truth from a chaotic grid of coefficients? Gaussian Elimination is our foundational tool, a systematic "cleansing" of variables that reduces complex systems into a transparent, triangular form where solutions can be plucked one by one via backward substitution.

The Architecture of Linear Systems

In numerical analysis, we represent a system of $n$ linear equations as the matrix product $Ax = \mathbf{b}$. Here, $A$ is an $n \times n$ coefficient matrix, $x$ is the vector of unknowns, and $\mathbf{b}$ is the vector of constants. To perform operations efficiently, we utilize the Augmented Matrix $[A, \mathbf{b}]$.

The Core Goal
Through a sequence of Elementary Row Operations (EROs), we aim to transform the system state into an equivalent Upper Triangular form $U$: $$[A, \mathbf{b}] \rightarrow [U, \mathbf{b}']$$ where all entries below the diagonal $u_{ii}$ are zero.

Elementary Row Operations (EROs)

The integrity of our solution set rests on three invariant-preserving moves:

  • Interchange: $(E_i) \leftrightarrow (E_j)$ — Swapping rows to reposition a better pivot.
  • Scaling: $(\lambda E_i) \rightarrow (E_i)$ — Multiplying a row by a non-zero scalar.
  • Replacement: $(E_i + \lambda E_j) \rightarrow (E_i)$ — The heart of elimination. Specifically, we use the multiplier $m_{j1} = a_{j1}/a_{11}$ to compute $(E_j - m_{j1} E_1) \rightarrow (E_j)$.

Matrix Anatomy and Properties

According to Theorem 6.8, matrix operations follow specific algebraic laws, such as Associativity ($A(BC) = (AB)C$), yet they famously lack Commutativity ($AB \neq BA$ in general). Recognizing special structures like Symmetric Matrices ($A = A^t$) and Identity Matrices ($I_n$) allows for specialized, faster factorization methods like $LDL^t$.

šŸŽÆ Core Principle: Invariance
EROs do not change the solution set because each operation is perfectly reversible. By applying these to the augmented matrix, we solve for all equations simultaneously without losing the logical connection between the coefficients and the target constants.